home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9206.ARJ / 1006057B < prev    next >
Text File  |  1992-06-02  |  295b  |  13 lines

  1. #include <stdio.h>  
  2. int main(void)     
  3.    {
  4.    int TestValue;     
  5.    /* get the value to increment */  
  6.    scanf("%d",&TestValue); 
  7.    /* increment it (in assembler) */  
  8.    #asm inc WORD PTR TestValue     
  9.    /* print the incremented value */  
  10.    printf("%d",TestValue); 
  11.    }
  12.  
  13.